home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / containers / utilityClasses / Layout.as < prev   
Text File  |  2014-03-27  |  971b  |  45 lines

  1. package mx.containers.utilityClasses
  2. {
  3.    import mx.core.Container;
  4.    import mx.core.mx_internal;
  5.    import mx.resources.IResourceManager;
  6.    import mx.resources.ResourceManager;
  7.    
  8.    use namespace mx_internal;
  9.    
  10.    public class Layout
  11.    {
  12.       
  13.       mx_internal static const VERSION:String = "3.0.0.0";
  14.        
  15.       
  16.       private var _target:Container;
  17.       
  18.       protected var resourceManager:IResourceManager;
  19.       
  20.       public function Layout()
  21.       {
  22.          resourceManager = ResourceManager.getInstance();
  23.          super();
  24.       }
  25.       
  26.       public function get target() : Container
  27.       {
  28.          return _target;
  29.       }
  30.       
  31.       public function set target(param1:Container) : void
  32.       {
  33.          _target = param1;
  34.       }
  35.       
  36.       public function measure() : void
  37.       {
  38.       }
  39.       
  40.       public function updateDisplayList(param1:Number, param2:Number) : void
  41.       {
  42.       }
  43.    }
  44. }
  45.